home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-447.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  124 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(14738);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2004-0753", "CAN-2004-0782", "CAN-2004-0783", "CAN-2004-0788");
  13.  
  14.  name["english"] = "RHSA-2004-447: gdk";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated gdk-pixbuf packages that fix several security flaws are now available.
  21.  
  22.   The gdk-pixbuf package contains an image loading library used with the
  23.   GNOME GUI desktop environment.
  24.  
  25.   [Updated 15th September 2004]
  26.   Packages have been updated to correct a bug which caused the xpm loader
  27.   to fail.
  28.  
  29.   During testing of a previously fixed flaw in Qt (CAN-2004-0691), a flaw was
  30.   discovered in the BMP image processor of gdk-pixbuf. An attacker could
  31.   create a carefully crafted BMP file which would cause an application
  32.   to enter an infinite loop and not respond to user input when the file was
  33.   opened by a victim. The Common Vulnerabilities and Exposures project
  34.   (cve.mitre.org) has assigned the name CAN-2004-0753 to this issue.
  35.  
  36.   During a security audit, Chris Evans discovered a stack and a heap overflow
  37.   in the XPM image decoder. An attacker could create a carefully crafted XPM
  38.   file which could cause an application linked with gtk2 to crash or possibly
  39.   execute arbitrary code when the file was opened by a victim.
  40.   (CAN-2004-0782, CAN-2004-0783)
  41.  
  42.   Chris Evans also discovered an integer overflow in the ICO image decoder.
  43.   An attacker could create a carefully crafted ICO file which could cause an
  44.   application linked with gtk2 to crash when the file is opened by a victim.
  45.   (CAN-2004-0788)
  46.  
  47.   These packages have also been updated to correct a bug which caused the xpm
  48.   loader to fail.
  49.  
  50.   Users of gdk-pixbuf are advised to upgrade to these packages, which
  51.   contain backported patches and are not vulnerable to these issues.
  52.  
  53.  
  54.  
  55.  
  56. Solution : http://rhn.redhat.com/errata/RHSA-2004-447.html
  57. Risk factor : High';
  58.  
  59.  script_description(english:desc["english"]);
  60.  
  61.  summary["english"] = "Check for the version of the gdk packages";
  62.  script_summary(english:summary["english"]);
  63.  
  64.  script_category(ACT_GATHER_INFO);
  65.  
  66.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  67.  family["english"] = "Red Hat Local Security Checks";
  68.  script_family(english:family["english"]);
  69.  
  70.  script_dependencies("ssh_get_info.nasl");
  71.  
  72.  script_require_keys("Host/RedHat/rpm-list");
  73.  exit(0);
  74. }
  75.  
  76. include("rpm.inc");
  77. if ( rpm_check( reference:"gdk-pixbuf-0.22.0-11.2.2E", release:"RHEL2.1") )
  78. {
  79.  security_hole(0);
  80.  exit(0);
  81. }
  82. if ( rpm_check( reference:"gdk-pixbuf-devel-0.22.0-11.2.2E", release:"RHEL2.1") )
  83. {
  84.  security_hole(0);
  85.  exit(0);
  86. }
  87. if ( rpm_check( reference:"gdk-pixbuf-gnome-0.22.0-11.2.2E", release:"RHEL2.1") )
  88. {
  89.  security_hole(0);
  90.  exit(0);
  91. }
  92. if ( rpm_check( reference:"gdk-pixbuf-0.22.0-11.3.3", release:"RHEL3") )
  93. {
  94.  security_hole(0);
  95.  exit(0);
  96. }
  97. if ( rpm_check( reference:"gdk-pixbuf-devel-0.22.0-11.3.3", release:"RHEL3") )
  98. {
  99.  security_hole(0);
  100.  exit(0);
  101. }
  102. if ( rpm_check( reference:"gdk-pixbuf-gnome-0.22.0-11.3.3", release:"RHEL3") )
  103. {
  104.  security_hole(0);
  105.  exit(0);
  106. }
  107.  
  108. if ( rpm_exists(rpm:"gdk-", release:"RHEL2.1") )
  109. {
  110.  set_kb_item(name:"CAN-2004-0753", value:TRUE);
  111.  set_kb_item(name:"CAN-2004-0782", value:TRUE);
  112.  set_kb_item(name:"CAN-2004-0783", value:TRUE);
  113.  set_kb_item(name:"CAN-2004-0788", value:TRUE);
  114. }
  115. if ( rpm_exists(rpm:"gdk-", release:"RHEL3") )
  116. {
  117.  set_kb_item(name:"CAN-2004-0753", value:TRUE);
  118.  set_kb_item(name:"CAN-2004-0782", value:TRUE);
  119.  set_kb_item(name:"CAN-2004-0783", value:TRUE);
  120.  set_kb_item(name:"CAN-2004-0788", value:TRUE);
  121. }
  122.  
  123. set_kb_item(name:"RHSA-2004-447", value:TRUE);
  124.